<?php

   

    $element = "qaccent.php_15-06-2024_18:34:19_***rev_4";

    //$element = 'The lazy fox jumped over the fence';

    if (strpos($element, 'accent.php')) 
    {
        echo " Yes";
    }
    else
    {
        echo " Erreur";
    }

/*
if (str_contains($string, 'Lazy')) {
    echo 'The string "Lazy" was found in the string';
} else {
    echo '"Lazy" was not found because the case does not match';
}*/

?>